-
Notifications
You must be signed in to change notification settings - Fork 17
Block the package from building on iOS-derived platforms #30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@iCharlesHu Can I get an approval, please? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we are to do this should we add an iOS CI (if possible at all)? Otherwise how would we know if a change causes the project to fail to build on iOS?
@@ -166,6 +166,9 @@ extension Configuration { | |||
error: Error, | |||
errorPipe: CreatedPipe | |||
) throws -> Execution<Output, Error> { | |||
#if !os(macOS) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The motivation of this change makes sense, but this runtime error inside this function is very non obvious to me.
Discussed offline: instead of allowing
This is the same workaround we used in https://github.com/swiftlang/swift-corelibs-foundation/blob/873a14c644bf194a5dc961b925a626070a141706/Package.swift#L186 to signify that we do not build on iOS. |
Process spawning is not available there. Also remove a couple overly-specific platform conditions in tests that would be incorrect on other Unix-like platforms such as Android and FreeBSD.
dce4662
to
67e3d7a
Compare
OK, I've made those adjustments. |
Process spawning is not available there. Also remove a couple overly-specific platform conditions in tests that would be incorrect on other Unix-like platforms such as Android and FreeBSD.